CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - prim algorithm

搜索资源列表

  1. tree

    0下载:
  2. 根据prim算法编写的求一棵树的最小生成树的程序。-Prepared in accordance with prim algorithm for a tree of minimum spanning tree procedure.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1203
    • 提供者:hezj
  1. Prim

    0下载:
  2. 这是一个构造最小生成树的Prim算法,是属于贪心算法的范畴。设G=(V,E)是连同带权图,V={1,2,3,...,n}。构造G的最小生成树。-This is a structure of Prim minimum spanning tree algorithm is a greedy algorithm category. Set G = (V, E) is, together with the weighted graph, V = (1,2,3 ,..., n). G of the min
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:5196
    • 提供者:Katherine
  1. f.doc

    1下载:
  2. 题目1:图的建立与遍历;连通网的最小生成树生成实现。 内容: 1) 用邻接表表示方法建立图1所示图的存储结构,用邻接矩阵存表示方法建立图2所示网的存储结构。 2) 在图1 存储结构(邻接表)上实现深度优先搜索遍历和广度优先搜索遍历,并给出遍历结果(序列)。 3) 按照普里姆算法,在图2所示连通网的存储结构(邻接矩阵)上实现此网的最小生成树,并输出生成树。 -Title 1: Map of the establishment and ergodicity conne
  3. 所属分类:图形图象

    • 发布日期:2012-12-25
    • 文件大小:11596
    • 提供者:sad
  1. GZ

    0下载:
  2. 给定一个地区的n个城市间的距离网,用Prim算法或Kruskal算法建立最小生成树,并计算得到的最小生成树的代价。-Given a region n the distance between cities network, using Prim algorithm or Kruskal minimum spanning tree algorithm, and calculate the cost of the minimum spanning tree.
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:68419
    • 提供者:迟浩东
  1. prim

    0下载:
  2. 本源码可供数据结构的初学者借鉴,叫最小生成树prim算法-The source for the data structure from the beginners, called minimum spanning tree algorithm prim
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:7498
    • 提供者:郑海洋
  1. Primalgorithm

    0下载:
  2. 普里姆算法求最小生成树(邻接表存储),用c++描写的,数据结构中的-Prim algorithm for minimum spanning tree (adjacent table storage), with c++ descr iption, data structure
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:276414
    • 提供者:dingyi
  1. ALGO-11

    0下载:
  2. Prim algorithm to find shortest path in graph
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2124
    • 提供者:saurabh
  1. prim

    0下载:
  2. 数据结构中的最小生成树实现,根据核心算法在Visual studio6.0的开发环境中运行成功。-Data structure to achieve the minimum spanning tree, according to the core algorithm in the development environment Visual studio6.0 run successfully.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:750
    • 提供者:夏之星
  1. prim

    0下载:
  2. prim算法构造最小生成树,调试通过,c++语言编写。-Minimum Spanning Tree Algorithm prim, debugging through, c++ languages.
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:1118
    • 提供者:zhlohi
  1. B

    0下载:
  2. Prim算法完整实现代码收藏 用Prim算法求无向图的最小生成树 -Prim algorithm to achieve a complete collection of code using Prim algorithm for undirected graph of the minimum spanning tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:42629
    • 提供者:曾冬梅
  1. 222222222222

    0下载:
  2. 1. 利用克鲁斯卡尔算法求网的最小生成树。 2. 利用普里姆算法求网的最小生成树。 3. 要求输出各条边及它们的权值。 -1. Using Kruskal' s algorithm for minimum spanning tree network. 2. Prim algorithm for the use of the minimum spanning tree network. 3. Requirements of the output of each side, and
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:20062
    • 提供者:XH
  1. prim

    0下载:
  2. Prim s algorithm is an algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the
  3. 所属分类:Graph program

    • 发布日期:2017-04-11
    • 文件大小:1323
    • 提供者:mr_pupu
  1. MST

    0下载:
  2. Minimum Spanning Tree implementation using kruskal and prims algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:2150
    • 提供者:shi
  1. PRIM

    0下载:
  2. 构造最小生成树的常用方法是Prim算法与Kruskal算法,二者都是基于贪心算法设计侧略。-Construction of the commonly used minimum spanning tree algorithm is Prim and Kruskal algorithms, both are based on the design side of a little greedy algorithm.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:619
    • 提供者:workfuture
  1. a

    0下载:
  2. 最小生成树C语言描述,采用了Prim算法,提高程序运行速度-C language to describe the minimum spanning tree, using Prim algorithm, improve the running speed
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1085
    • 提供者:李杰
  1. Prims_Algorithm

    0下载:
  2. Prim s algorithm is an algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the
  3. 所属分类:Graph program

    • 发布日期:2017-04-05
    • 文件大小:930
    • 提供者:kenny
  1. PRIM

    0下载:
  2. prim s algorithm implementation in C++ with graphical output
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2001
    • 提供者:diksha
  1. prim

    0下载:
  2. 依据prim最小生成树的算法实现的最小生成树源码,能够建立准确的最小代价生成树-Prim minimum spanning tree based on the minimum spanning tree algorithm source code, be able to establish an accurate minimum cost spanning tree
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:11586
    • 提供者:fengyunlucky
  1. 091017prim

    0下载:
  2. 用prim算法求最小生成树.C语言中关于图一章的很好的理解例子。对初学者很有用。-Seek the minimum spanning tree with the prim algorithm. C language on the map a good understanding of the chapter examples. Very useful for beginners.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:272384
    • 提供者:肖叶枝
  1. 2485

    0下载:
  2. pku 2485 use the prim algorithm
  3. 所属分类:SCM

    • 发布日期:2017-04-14
    • 文件大小:4617
    • 提供者:lili
« 1 2 3 4 5 6 78 9 10 11 12 ... 17 »
搜珍网 www.dssz.com